-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Pytables support for hierarchical keys #2401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
min_itemsize can be passed as a dict
support removal of sub-stores by a higer level key (e.g. store.remove('df') will remove everything in the '/df' namespace and below) access to namespaces is ABSOLUTE (and a '/' will be assumed if not provided), e.g. store.get('df') will get '/df') thus is backwards compatible slight change to the __repr__ to show the paths
…g always has a leading '/') bug in __repr__ for tables - fixed
ready for merging |
good to go - I am sure that I will find more bugs...but will add to the issue... |
Cool. Aside: could you be careful about not merging master into feature branches? it makes the commit history very unclean |
I was able to get these commits to cherry-pick cleanly. Merged |
yes np On Dec 1, 2012, at 3:34 PM, Wes McKinney [email protected] wrote:
|
GH #2391
support for keys of the form: foo/bar/bah
includes docs & tests